home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / Layout.C < prev    next >
C/C++ Source or Header  |  1992-05-05  |  480b  |  37 lines

  1. #ifdef __GNUG__
  2. #pragma implementation
  3. #endif
  4.  
  5. #include "Layout.h"
  6.  
  7. #include "VObject.h"
  8.  
  9. //---- Layout ------------------------------------------------------------------
  10.  
  11. Layout::Layout()
  12. {
  13. }
  14.  
  15. void Layout::SetOrigin(VObject*, Point)
  16. {
  17. }
  18.  
  19. void Layout::SetExtent(VObject*, Point)
  20. {
  21. }
  22.  
  23. Metric Layout::GetMinSize(VObject *acv)
  24. {
  25.     return Metric(acv->contentRect.extent);
  26. }
  27.  
  28. void Layout::Adorn(VObject*, Rectangle&, int)
  29. {
  30. }
  31.  
  32. long Layout::GetValue(VObject*, int)
  33. {
  34.     return 0;
  35. }
  36.  
  37.